home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 October: Windmill on DISC / ADC Developer CD (1993-10) (''Windmill On DISC'')_iso / Dev.CD Oct 93.iso / System Software / U.S. System Software / System 7 Pro™ Beta 11 / Development Tools / Sample Code / Standard Mail / MiniMailer / MakeFile next >
Encoding:
Makefile  |  1993-06-16  |  1.1 KB  |  55 lines  |  [TEXT/MPS ]

  1. #
  2. # MiniMailer
  3. # Copyright © 1993, Apple Computer Inc.
  4. # All rights reserved.
  5. #
  6. Src                    =    ":Src:"
  7. Obj                    =    ":Obj:"
  8. Objects                =                        ∂
  9.         {Obj}MiniMailer.c.o
  10.  
  11. #
  12. # Directory dependencies. "Everything in the
  13. # {Obj} directory depends on something in the
  14. # {Src} directory."
  15. #
  16. {Obj}            ƒ    {Src}
  17.  
  18. #
  19. # Compiler dependencies -- common to all compilations
  20. # The idea here is that all sources are stored in
  21. # the {Src} subdirectory, and all objects (and code
  22. # resources output by the linker) are stored in the
  23. # {Obj} subdirectory.
  24. #
  25. .c.o ƒ .c                                    ∂
  26.         {Src}MiniMailer.h
  27.     C {COptions}                            ∂
  28.         -o {TargDir}{Default}.c.o            ∂
  29.         {DepDir}{Default}.c
  30.  
  31. #
  32. # Build the application
  33. #
  34. "MiniMailer MPW" ƒƒ                            ∂
  35.         MakeFile                            ∂
  36.         {Src}MiniMailer.h                    ∂
  37.         {Src}MiniMailer.r
  38.     Rez                                        ∂
  39.         {Src}MiniMailer.r                    ∂
  40.         -append                                ∂
  41.         -t APPL                                ∂
  42.         -i "{CIncludes}"                    ∂
  43.         -i "{RIncludes}"                    ∂
  44.         -o "MiniMailer MPW"
  45.  
  46. "MiniMailer MPW" ƒƒ                            ∂
  47.         MakeFile                            ∂
  48.         {Objects}
  49.     Link                                    ∂
  50.         -t APPL                                ∂
  51.         {Objects}                            ∂
  52.         "{Libraries}"Runtime.o                ∂
  53.         "{Libraries}"Interface.o            ∂
  54.         -o "MiniMailer MPW"
  55.